summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/(procurement)/bid/[id]/page.tsx
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-11-10 11:25:19 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2025-11-10 11:25:19 +0900
commita5501ad1d1cb836d2b2f84e9b0f06049e22c901e (patch)
tree667ed8c5d6ec35b109190e9f976d66ae54def4ce /app/[lng]/evcp/(evcp)/(procurement)/bid/[id]/page.tsx
parentb0fe980376fcf1a19ff4b90851ca8b01f378fdc0 (diff)
parentf8a38907911d940cb2e8e6c9aa49488d05b2b578 (diff)
Merge remote-tracking branch 'origin/dujinkim' into master_homemaster
Diffstat (limited to 'app/[lng]/evcp/(evcp)/(procurement)/bid/[id]/page.tsx')
-rw-r--r--app/[lng]/evcp/(evcp)/(procurement)/bid/[id]/page.tsx12
1 files changed, 0 insertions, 12 deletions
diff --git a/app/[lng]/evcp/(evcp)/(procurement)/bid/[id]/page.tsx b/app/[lng]/evcp/(evcp)/(procurement)/bid/[id]/page.tsx
deleted file mode 100644
index ca0788a5..00000000
--- a/app/[lng]/evcp/(evcp)/(procurement)/bid/[id]/page.tsx
+++ /dev/null
@@ -1,12 +0,0 @@
-import { redirect } from 'next/navigation'
-
-interface PageProps {
- params: Promise<{ lng: string; id: string }>
-}
-
-export default async function Page({ params }: PageProps) {
- const { lng, id } = await params
-
- // 기본적으로 입찰 사전견적 페이지로 리다이렉트
- redirect(`/${lng}/evcp/bid/${id}/pre-quote`)
-}